home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Writer 2.12 / XML writer.exe / file0015.bin < prev    next >
Encoding:
Text File  |  2003-04-14  |  1.3 KB  |  30 lines

  1. <!--See PassportExternalDtd.xml for details on how to use this DTD for validation-->
  2.  
  3. <!--The element 'first_name', denoted by (+), may be displayed one or more times.-->
  4. <!ELEMENT passport_details (birth_cert,last_name,first_name+,address)>
  5. <!ELEMENT birth_cert (#PCDATA)>
  6. <!--The element 'birth_cert' conatins an entity '&cert;' which
  7.     references data that is stored in a text file at the location
  8.     'http://www.xmlwriter.net/birth_cert.txt'. Entities help to    reduce
  9.     the entry of repetitive or large quantities of information.-->
  10. <!ENTITY cert SYSTEM "http://www.xmlwriter.net/examples/birth_cert.txt">
  11. <!ELEMENT last_name (#PCDATA)>
  12. <!ELEMENT first_name (#PCDATA)>
  13. <!--The element 'contact_no', denoted by (?), may be displayed zero or one times.
  14.     The element 'email', denoted by (*), may be displayed zero or more times.-->
  15. <!ELEMENT address (street,(city|town),(state|province),(ZIP|postal_code),country,contact_no?,email*)>
  16. <!ELEMENT street (#PCDATA)>
  17. <!ELEMENT city (#PCDATA)>
  18. <!ELEMENT town (#PCDATA)>
  19. <!ELEMENT state (#PCDATA)>
  20. <!ELEMENT province (#PCDATA)>
  21. <!ELEMENT ZIP (#PCDATA)>
  22. <!ELEMENT postal_code (#PCDATA)>
  23. <!ELEMENT country (#PCDATA)>
  24. <!ELEMENT contact_no (#PCDATA)>
  25. <!ELEMENT email (#PCDATA)>
  26.  
  27. <!--This file was created using XMLwriter v2.0 Beta 2.
  28.     Copyright Wattle Software 2002. All rights reserved.
  29.     http://XMLwriter.net/-->
  30.